var strconv.powtab

5 uses

	strconv (current package)
		atof.go#L312: var powtab = []int{1, 3, 6, 9, 13, 16, 19, 23, 26}
		atof.go#L342: 		if d.dp >= len(powtab) {
		atof.go#L345: 			n = powtab[d.dp]
		atof.go#L352: 		if -d.dp >= len(powtab) {
		atof.go#L355: 			n = powtab[-d.dp]